home *** CD-ROM | disk | FTP | other *** search
/ Point Programming 1 / PPROG1.ISO / pascal / swag / crt.swg / 0003_Clear CRT Screen FAST.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1993-05-28  |  257 b   |  16 lines

  1. {
  2. >Does anyone know how to clear the screen Really fast ?
  3. Well, here is some Asm code but I haven't tested it. It should work:
  4. }
  5.  
  6. Procedure FastClrScr; Assembler;
  7. Asm
  8.   MOV AH,0Fh
  9.   INT 10h
  10.   MOV AH,0
  11.   INT 10h
  12. end;
  13.  
  14. begin
  15.   FastClrScr;
  16. end.